home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / zcssepr.c < prev    next >
C/C++ Source or Header  |  1997-07-08  |  5KB  |  172 lines

  1. /* Copyright (C) 1994, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* zcssepr.c */
  20. /* Separation color space support */
  21. #include "ghost.h"
  22. #include "errors.h"
  23. #include "oper.h"
  24. #include "gsstruct.h"
  25. #include "gscolor.h"
  26. #include "gsmatrix.h"        /* for gxcolor2.h */
  27. #include "gscsepr.h"
  28. #include "gxcspace.h"
  29. #include "gxfixed.h"        /* ditto */
  30. #include "gxcolor2.h"
  31. #include "estack.h"
  32. #include "ialloc.h"
  33. #include "icsmap.h"
  34. #include "igstate.h"
  35. #include "ivmspace.h"
  36. #include "store.h"
  37.  
  38. /* Imported from gscsepr.c */
  39. extern const gs_color_space_type gs_color_space_type_Separation;
  40.  
  41. /* Forward references */
  42. private int separation_map1(P1(os_ptr));
  43.  
  44. /* Define the separation cache size.  This makes many useful tint values */
  45. /* map to integer cache indices. */
  46. #define separation_cache_size 360
  47.  
  48. /* Tint transform procedure that just consults the cache. */
  49. private int
  50. lookup_tint(const gs_separation_params *params, floatp tint, float *values)
  51. {    int m = params->alt_space.type->num_components;
  52.     const gs_indexed_map *map = params->map;
  53.     int value_index =
  54.       (tint < 0 ? 0 : tint > 1 ? map->num_values - m :
  55.        (int)(tint * separation_cache_size + 0.5) * m);
  56.     const float *pv = &map->values[value_index];
  57.     switch ( m )
  58.     {
  59.     default: return_error(e_rangecheck);
  60.     case 4: values[3] = pv[3];
  61.     case 3: values[2] = pv[2];
  62.         values[1] = pv[1];
  63.     case 1: values[0] = pv[0];
  64.     }
  65.     return 0;
  66. }
  67.  
  68. /* <array> .setseparationspace - */
  69. /* The current color space is the alternate space for the separation space. */
  70. private int
  71. zsetseparationspace(register os_ptr op)
  72. {    const ref *pcsa;
  73.     gs_color_space cs;
  74.     ref_colorspace cspace_old;
  75.     uint edepth = ref_stack_count(&e_stack);
  76.     gs_indexed_map *map;
  77.     int code;
  78.  
  79.     check_read_type(*op, t_array);
  80.     if ( r_size(op) != 4 )
  81.         return_error(e_rangecheck);
  82.     pcsa = op->value.const_refs + 1;
  83.     switch ( r_type(pcsa) )
  84.     {
  85.     default:
  86.         return_error(e_typecheck);
  87.     case t_string:
  88.     case t_name:
  89.         ;
  90.     }
  91.     check_proc(pcsa[2]);
  92.     cs = *gs_currentcolorspace(igs);
  93.     if ( !cs.type->can_be_base_space )
  94.         return_error(e_rangecheck);
  95.     code = zcs_begin_map(&map, &pcsa[2], separation_cache_size + 1,
  96.                  (const gs_base_color_space *)&cs,
  97.                  separation_map1);
  98.     if ( code < 0 )
  99.       return code;
  100.     map->proc.tint_transform = lookup_tint;
  101.     cs.params.separation.alt_space = *(gs_base_color_space *)&cs;
  102.     cs.params.separation.map = map;
  103.     cspace_old = istate->colorspace;
  104.     istate->colorspace.procs.special.separation.layer_name = pcsa[0];
  105.     istate->colorspace.procs.special.separation.tint_transform = pcsa[2];
  106.     cs.type = &gs_color_space_type_Separation;
  107.     code = gs_setcolorspace(igs, &cs);
  108.     if ( code < 0 )
  109.     {    istate->colorspace = cspace_old;
  110.         ref_stack_pop_to(&e_stack, edepth);
  111.         return code;
  112.     }
  113.     pop(1);
  114.     return (ref_stack_count(&e_stack) == edepth ? 0 : o_push_estack);  /* installation will load the caches */
  115. }
  116.  
  117. /* Continuation procedure for saving transformed tint values. */
  118. private int
  119. separation_map1(os_ptr op)
  120. {    es_ptr ep = esp;
  121.     int i = (int)ep[csme_index].value.intval;
  122.  
  123.     if ( i >= 0 )        /* i.e., not first time */
  124.     {    int m = (int)ep[csme_num_components].value.intval;
  125.         int code = float_params(op, m, &r_ptr(&ep[csme_map], gs_indexed_map)->values[i * m]);
  126.  
  127.         if ( code < 0 )
  128.           return code;
  129.         pop(m);  op -= m;
  130.         if ( i == (int)ep[csme_hival].value.intval )
  131.         {    /* All done. */
  132.             esp -= num_csme;
  133.             return o_pop_estack;
  134.         }
  135.     }
  136.     push(1);
  137.     ep[csme_index].value.intval = ++i;
  138.     make_real(op, i / (float)separation_cache_size);
  139.     make_op_estack(ep + 1, separation_map1);
  140.     ep[2] = ep[csme_proc];        /* tint_transform */
  141.     esp = ep + 2;
  142.     return o_push_estack;
  143. }
  144.  
  145. /* - currentoverprint <bool> */
  146. private int
  147. zcurrentoverprint(register os_ptr op)
  148. {    push(1);
  149.     make_bool(op, gs_currentoverprint(igs));
  150.     return 0;
  151. }
  152.  
  153. /* <bool> setoverprint - */
  154. private int
  155. zsetoverprint(register os_ptr op)
  156. {    check_type(*op, t_boolean);
  157.     gs_setoverprint(igs, op->value.boolval);
  158.     pop(1);
  159.     return 0;
  160. }
  161.  
  162. /* ------ Initialization procedure ------ */
  163.  
  164. BEGIN_OP_DEFS(zcssepr_l2_op_defs) {
  165.         op_def_begin_level2(),
  166.     {"0currentoverprint", zcurrentoverprint},
  167.     {"1setoverprint", zsetoverprint},
  168.     {"1.setseparationspace", zsetseparationspace},
  169.         /* Internal operators */
  170.     {"1%separation_map1", separation_map1},
  171. END_OP_DEFS(0) }
  172.